:root {
    --parchment: #1a1612;
    --parchment-dark: #0d0a08;
    --ink: #d4caba;
    
    /* Couleurs Guerrier - palette martiale fer/acier/sang */
    --steel: #6b7c8a;
    --steel-light: #8a9faf;
    --steel-dark: #3a4652;
    --iron: #4a4a4a;
    --iron-light: #6a6a6a;
    --iron-dark: #2a2a2a;
    --bronze: #b8733a;
    --bronze-light: #d49558;
    --blood: #8b1a1a;
    --blood-dark: #5a0f0f;
    --leather: #5c4a3a;
    --leather-dark: #3a2a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background-color: var(--parchment);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(107, 124, 138, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 115, 58, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(92, 74, 58, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, transparent 0%, rgba(13, 10, 8, 0.5) 100%);
    color: var(--ink);
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(107, 124, 138, 0.03) 1px,
            rgba(107, 124, 138, 0.03) 2px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(92, 74, 58, 0.02) 1px,
            rgba(92, 74, 58, 0.02) 2px
        );
    pointer-events: none;
    z-index: 0;
}

/* Texture métal/cuir */
.parchment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(138, 155, 168, 0.03) 2px,
            rgba(138, 155, 168, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(107, 90, 68, 0.02) 2px,
            rgba(107, 90, 68, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Bouton retour */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 12px 20px;
    background: rgba(42, 37, 32, 0.95);
    border: 2px solid var(--steel);
    color: var(--steel-light);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.back-button:hover {
    background: var(--steel);
    color: var(--parchment);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(138, 155, 168, 0.6);
}

/* Section Hero */
.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, 
        rgba(107, 124, 138, 0.15) 0%, 
        rgba(13, 10, 8, 0.3) 100%);
}

.hero-image {
    flex: 0 0 400px;
    animation: fadeInLeft 1s ease-out;
    padding: 10px;
    background: linear-gradient(135deg, rgba(107, 124, 138, 0.20), rgba(184, 115, 58, 0.15));
    border-radius: 16px;
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.8),
        0 0 0 4px var(--steel),
        0 0 0 8px rgba(184, 115, 58, 0.4);
    border: 4px solid rgba(107, 124, 138, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 1),
        0 0 0 4px var(--steel-light),
        0 0 0 8px rgba(184, 115, 58, 0.6),
        0 0 40px rgba(184, 115, 58, 0.3);
}

.hero-content {
    flex: 1;
    animation: fadeInRight 1s ease-out;
}

.class-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--steel-light);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(107, 124, 138, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.6);
}

.class-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--bronze-light);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--bronze);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.class-type {
    font-size: 1.1rem;
    color: var(--steel);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    position: relative;
    z-index: 2;
}

/* Sections */
.section {
    margin-bottom: 60px;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--steel-light);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--steel);
    letter-spacing: 2px;
}

.subsection-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--bronze-light);
    margin: 40px 0 20px;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--ink);
}

.interactive-hint {
    background: linear-gradient(135deg, rgba(138, 155, 168, 0.18), rgba(205, 127, 50, 0.15));
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--bronze);
    margin-bottom: 30px;
    font-size: 1rem;
    color: var(--ink);
    animation: pulse-hint 2s ease-in-out infinite;
}

@keyframes pulse-hint {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(138, 155, 168, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(138, 155, 168, 0);
    }
}

/* Boîte de contenu */
.content-box {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.80), rgba(13, 10, 8, 0.85));
    padding: 30px;
    border-left: 4px solid var(--steel);
    border-radius: 8px;
    border: 1px solid rgba(107, 124, 138, 0.25);
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.content-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--ink);
}

.content-box p:last-child {
    margin-bottom: 0;
}

.content-box .subsection {
    background: rgba(107, 124, 138, 0.08);
    padding: 20px;
    margin: 15px 0;
    border-radius: 6px;
    border-left: 3px solid var(--bronze);
    border: 1px solid rgba(107, 124, 138, 0.15);
}

.content-box .subsection h4,
.content-box .subsection h5 {
    font-family: 'Cinzel', serif;
    color: var(--bronze-light);
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.content-box .subsection h5 {
    font-size: 1.1rem;
    margin-top: 15px;
}

.content-box .subsection ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.content-box .subsection li {
    padding: 6px 0 6px 20px;
    position: relative;
}

.content-box .subsection li::before {
    content: '⚔';
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: bold;
    font-size: 0.9rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(107, 124, 138, 0.15), rgba(184, 115, 58, 0.12));
    padding: 20px;
    border-radius: 6px;
    border: 2px solid var(--steel);
    margin-top: 20px;
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.3);
}

.highlight-box p {
    margin: 0;
    color: var(--ink);
}

/* Grille de statistiques */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.stat-category {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.80), rgba(13, 10, 8, 0.85));
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--steel-dark);
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.stat-category h3 {
    font-family: 'Cinzel', serif;
    color: var(--steel-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-category ul {
    list-style: none;
    padding: 0;
}

.stat-category li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(107, 124, 138, 0.2);
    color: var(--ink);
}

.stat-category li:last-child {
    border-bottom: none;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.stat-item {
    padding: 10px;
    background: rgba(10, 8, 6, 0.6);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(107, 124, 138, 0.3);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-item.positive {
    color: #b8d4a8;
    border-color: #88a878;
    background: linear-gradient(135deg, rgba(136, 168, 120, 0.25), rgba(10, 8, 6, 0.6));
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(136, 168, 120, 0.2);
}

.stat-item.negative {
    color: #e8a8a8;
    border-color: #c88888;
    background: linear-gradient(135deg, rgba(200, 136, 136, 0.25), rgba(10, 8, 6, 0.6));
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(200, 136, 136, 0.2);
}

.stat-item.neutral {
    color: #c8c8c8;
    border-color: #a8a8a8;
    background: linear-gradient(135deg, rgba(168, 168, 168, 0.20), rgba(10, 8, 6, 0.6));
}

.stat-item.highlight {
    border: 2px solid var(--bronze);
    background: linear-gradient(135deg, rgba(184, 115, 58, 0.30), rgba(10, 8, 6, 0.7));
    font-size: 1.1rem;
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(184, 115, 58, 0.3),
        0 0 12px rgba(184, 115, 58, 0.2);
}

.resistance-list {
    margin-top: 15px;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.traits-grid span {
    padding: 8px;
    background: rgba(138, 155, 168, 0.15);
    border-radius: 4px;
    font-size: 0.95rem;
    border: 1px solid rgba(138, 155, 168, 0.3);
}

/* Cartes de talents */
.talent-card {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.85), rgba(13, 10, 8, 0.90));
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid var(--bronze);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 124, 138, 0.25);
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 124, 138, 0.4), transparent);
}

.talent-card:hover {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.95), rgba(13, 10, 8, 1));
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.15),
        0 5px 20px rgba(107, 124, 138, 0.3),
        0 0 30px rgba(184, 115, 58, 0.15);
    transform: translateX(5px);
    border-left-color: var(--bronze-light);
}

.talent-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--bronze-light);
    margin-bottom: 12px;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.talent-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--steel-light);
    margin: 15px 0 10px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.talent-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--ink);
}

.talent-card .subsection {
    background: rgba(107, 124, 138, 0.08);
    padding: 20px;
    margin: 15px 0;
    border-radius: 6px;
    border-left: 3px solid var(--steel);
    border: 1px solid rgba(107, 124, 138, 0.15);
}

.talent-card ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.talent-card li {
    padding: 6px 0 6px 20px;
    position: relative;
}

.talent-card li::before {
    content: '⚔';
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Grille des vocations (CORRECTION ICI) */
.vocation-grid {
    display: grid;
    gap: 35px;
}

.vocation-card {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.85), rgba(13, 10, 8, 0.88));
    padding: 30px;
    border: 3px solid var(--steel-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.5);
}

.vocation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(107, 124, 138, 0.3), transparent);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.vocation-card:hover {
    border-color: var(--steel-light);
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.12),
        0 8px 30px rgba(107, 124, 138, 0.4),
        0 0 40px rgba(184, 115, 58, 0.2);
    transform: translateY(-2px);
}

.vocation-card.selected {
    border-color: var(--bronze);
    border-width: 4px;
    box-shadow: 
        inset 0 1px 0 rgba(212, 149, 88, 0.15),
        0 8px 40px rgba(184, 115, 58, 0.6), 
        0 0 0 2px rgba(184, 115, 58, 0.3),
        0 0 60px rgba(184, 115, 58, 0.25);
    background: linear-gradient(135deg, rgba(184, 115, 58, 0.12), rgba(26, 22, 18, 0.90));
}

.vocation-card.selected::after {
    content: '✓ SÉLECTIONNÉ';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    color: var(--parchment);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 
        0 2px 8px rgba(184, 115, 58, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Vocations spécifiques - couleurs distinctives */
.vocation-card.forge {
    border-color: var(--bronze);
    background: linear-gradient(135deg, rgba(184, 115, 58, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.forge:hover {
    box-shadow: 
        inset 0 1px 0 rgba(212, 149, 88, 0.12),
        0 8px 30px rgba(184, 115, 58, 0.5),
        0 0 40px rgba(184, 115, 58, 0.3);
}

.vocation-card.shield {
    border-color: var(--steel);
    background: linear-gradient(135deg, rgba(107, 124, 138, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.shield:hover {
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.12),
        0 8px 30px rgba(107, 124, 138, 0.5),
        0 0 40px rgba(107, 124, 138, 0.3);
}

.vocation-card.rogue {
    border-color: var(--iron);
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.rogue:hover {
    box-shadow: 
        inset 0 1px 0 rgba(106, 106, 106, 0.12),
        0 8px 30px rgba(74, 74, 74, 0.5),
        0 0 40px rgba(74, 74, 74, 0.3);
}

.vocation-card.magic {
    border-color: #7a5aa8;
    background: linear-gradient(135deg, rgba(122, 90, 168, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.magic:hover {
    box-shadow: 
        inset 0 1px 0 rgba(142, 110, 188, 0.12),
        0 8px 30px rgba(122, 90, 168, 0.5),
        0 0 40px rgba(122, 90, 168, 0.3);
}

.vocation-card.agile {
    border-color: #5a8a5a;
    background: linear-gradient(135deg, rgba(90, 138, 90, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.agile:hover {
    box-shadow: 
        inset 0 1px 0 rgba(110, 158, 110, 0.12),
        0 8px 30px rgba(90, 138, 90, 0.5),
        0 0 40px rgba(90, 138, 90, 0.3);
}

.vocation-card.stance {
    border-color: var(--leather);
    background: linear-gradient(135deg, rgba(92, 74, 58, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.stance:hover {
    box-shadow: 
        inset 0 1px 0 rgba(112, 94, 78, 0.12),
        0 8px 30px rgba(92, 74, 58, 0.5),
        0 0 40px rgba(92, 74, 58, 0.3);
}

.vocation-card.duel {
    border-color: var(--blood);
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.15), rgba(26, 22, 18, 0.85));
}

.vocation-card.duel:hover {
    box-shadow: 
        inset 0 1px 0 rgba(159, 46, 46, 0.12),
        0 8px 30px rgba(139, 26, 26, 0.5),
        0 0 40px rgba(139, 26, 26, 0.3);
}

.vocation-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--steel-light);
    margin-bottom: 15px;
    font-size: 1.7rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.vocation-card h4 {
    font-family: 'Cinzel', serif;
    color: var(--bronze-light);
    margin: 20px 0 10px;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.vocation-card .subsection {
    background: rgba(107, 124, 138, 0.08);
    padding: 20px;
    margin: 15px 0;
    border-radius: 6px;
    border-left: 3px solid var(--bronze);
    border: 1px solid rgba(107, 124, 138, 0.15);
}

.vocation-card .subsection h4 {
    color: var(--bronze-light);
}

.vocation-card ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.vocation-card li {
    padding: 6px 0 6px 20px;
    position: relative;
}

.vocation-card li::before {
    content: '⚔';
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: bold;
    font-size: 0.9rem;
}

.vocation-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--ink);
}

/* Grille d'équipement */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.equipment-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.80), rgba(13, 10, 8, 0.85));
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--steel-dark);
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.equipment-item:hover {
    border-color: var(--bronze);
    box-shadow: 
        inset 0 1px 0 rgba(212, 149, 88, 0.12),
        0 5px 15px rgba(107, 124, 138, 0.4),
        0 0 20px rgba(184, 115, 58, 0.2);
    transform: translateY(-2px);
}

.equipment-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.equipment-item h4 {
    font-family: 'Cinzel', serif;
    color: var(--bronze-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.equipment-item p {
    font-size: 0.95rem;
    color: var(--ink);
}

/* Grille de compétences */
.competences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.competence-category {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.80), rgba(13, 10, 8, 0.85));
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--steel-dark);
    box-shadow: 
        inset 0 1px 0 rgba(138, 159, 175, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.competence-category h3 {
    font-family: 'Cinzel', serif;
    color: var(--steel-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.competence-list {
    list-style: none;
    padding: 0;
}

.competence-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(138, 155, 168, 0.2);
    font-size: 1.05rem;
}

.competence-list li:last-child {
    border-bottom: none;
}

.competence-list strong {
    color: var(--bronze-light);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px 30px;
    position: relative;
    z-index: 2;
}

.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--steel), transparent);
    margin: 0 auto 20px;
}

.footer p {
    font-size: 0.95rem;
    color: var(--steel);
    letter-spacing: 1px;
}

/* Styles pour le graphique */
.chart-container {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgba(10, 8, 6, 0.8), rgba(13, 10, 8, 0.9));
    border-radius: 12px;
    border: 2px solid var(--bronze);
    box-shadow: 
        inset 0 1px 0 rgba(212, 149, 88, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(184, 115, 58, 0.15);
}

.chart-wrapper canvas {
    max-height: 400px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 80px 30px 40px;
    }

    .hero-image {
        flex: 0 0 auto;
        max-width: 350px;
    }

    .class-quote {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--bronze);
        padding-top: 15px;
    }

    .stats-grid,
    .equipment-grid,
    .competences-grid,
    .vocation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .back-button {
        top: 10px;
        left: 10px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 70px 20px 30px;
    }

    .hero-image {
        max-width: 280px;
    }

    .class-title {
        font-size: 2.2rem;
    }

    .class-quote {
        font-size: 1.1rem;
    }

    .container {
        padding: 30px 20px 60px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-box,
    .stat-category,
    .talent-card,
    .vocation-card {
        padding: 20px;
    }

    .bonus-grid,
    .traits-grid {
        grid-template-columns: 1fr;
    }
}